/* ✅ Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body, html {
  overflow-x: hidden;
  background: #f4f4f4;
  min-height: 100vh;
}

/* ✅ Navbar */
.navbar {
  width: 100%;
  background: #0d1b2a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  height: 70px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  position: relative;
  transition: 0.3s;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #ffcc00;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ✅ Right icons */
.right-icons a {
  color: #fff;
  font-size: 22px;
  margin-left: 15px;
  transition: 0.3s;
}

.right-icons a:hover {
  color: #ffcc00;
}

/* ✅ Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0c0b0b;
  min-width: 200px;
  border-radius: 6px;
  z-index: 1000;
  flex-direction: column;
}
.dropdown-menu a {
  padding: 10px 15px;
  color: #eee;
  text-decoration: none;
  display: block;
}
.dropdown-menu a:hover {
  background: #201d1d;
}
@media (min-width: 768px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* ✅ Mobile Navbar */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    background: #0d1b2a;
    flex-direction: column;
    width: 100%;
    padding: 15px 0;
    z-index: 10000;
  }
  .nav-links.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
    font-size: 22px;
    cursor: pointer;
    margin-right: auto;
    order: -1;
  }
  .right-icons {
    margin-left: auto;
  }
}
@media (min-width: 993px) {
  .menu-toggle {
    display: none;
  }
}

/* ✅ Content spacing */
.content {
  margin-top: 80px;
  padding: 40px;
  text-align: center;
}

  




  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 20px 50px;
  }

  .contact-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-header h1 {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 10px;
  }

  .contact-header p {
    font-size: 1.1rem;
    color: #555;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  .contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
  }

  .contact-info {
    font-size: 1.1rem;
  }

  .contact-info h2 {
    font-size: 1.8rem;
    color: #0d47a1;
    margin-bottom: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  .contact-info p {
    margin: 10px 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }

  .contact-info a {
    color: #0d47a1;
    text-decoration: none;
  }

  .contact-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  }

  /* Google Map Section */
  .map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  }

  iframe {
    width: 100%;
    height: 300px;
    border: none;
  }

  /* Responsive Design */
  @media (max-width: 900px) {
    .contact-section {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .contact-info h2 {
      margin-top: 20px;
    }
  }



  .footer-section {
    width: 100%;
    background: #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    font-family: "Roboto", "Open Sans", sans-serif;
    font-size: 16px;
    color: #333;
    }
    
    .footer-section a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    }
    
    @media (max-width: 768px) {
        .footer-section {
          flex-direction: column;
          text-align: center;
          gap: 8px;
          padding: 15px;
        }
      }
      